Welcome![Sign In][Sign Up]
Location:
Search - lexical analyzer

Search list

[JSP/JavathecodeAnalysis

Description: 词法分析器。实现对输入的函数进行词法分析,并有规定的输出-Lexical analyzer. Realize the function of the input lexical analysis, and a specified output
Platform: | Size: 6144 | Author: energy4565 | Hits:

[JSP/JavaJAccidenceAnalyse

Description: 有java实现的词法分析器,功能强大不止是简单的词法分析,还扩张了许多功能-A java implementation of lexical analyzer, and powerful than a simple lexical analysis, but also expand the number of features
Platform: | Size: 24576 | Author: energy4565 | Hits:

[Othercifafenxiqi6

Description: 该个词法分析器要求至少能够识别以下几类单词: a. 关键字:else if int return void while共6个,所有的关键字都是保留字,并且必须是小写; b. 标识符:识别与C语言词法规定相一致的标识符,通过下列正则表达式定义:ID = letter (letter | digit)*; c. 常数:NUM=(+ | - |ε)digit digit*(.digit digit* |ε)(e(+ | - |ε) digit digit* |ε),letter = a|..|z|A|..|Z|,digit = 0|..|9,包括整数,如123, -123, +123等;小数,如123.45, +123.45, -123.45;科学计数法表示的常数,如+1.23e3,-2.3e-9; d. 专用符号:+ - * / < <= > >= == != = , ( ) [ ] { } /* */; -lexical analyzer
Platform: | Size: 2048 | Author: 张凤 | Hits:

[Other44444444425

Description: C 语言写的词法分析器,自己写的,多多指教-C language to write the lexical analyzer, he has written the exhibitions
Platform: | Size: 3072 | Author: 许俊威 | Hits:

[OS programcifa

Description: 词法分析器一个 c语言的词法分析器,简单实用-A lexical analyzer
Platform: | Size: 2048 | Author: hou | Hits:

[Multi Monitorcifa

Description: 自己写的词法分析器,语法分析器,觉得不错,多多指教-Write your own lexical analyzer, parser, feel good, great weekend
Platform: | Size: 3072 | Author: 许俊威 | Hits:

[ELanguagecifafenxiqi

Description: 词法分析器,用于实现编译过程中的词法分析与解释-Lexical analyzer, the compilation process for the realization of the lexical analysis and interpretation
Platform: | Size: 942080 | Author: gting | Hits:

[ELanguageCifafenxiqi

Description: 编译原理的词法分析器,将用户输入的内容转换成二元记号流-Compiler theory of lexical analyzer, the user input into the content stream of binary tokens
Platform: | Size: 1024 | Author: Mervyn | Hits:

[OS programaaa

Description: VC++语言编写的一个简单的词法分析器实现词法分析功能-Written in VC++ lexical analyzer to achieve a simple lexical analysis function
Platform: | Size: 616448 | Author: 11 | Hits:

[Editorxl

Description: 该文件为词法分析器,可以实现对基本词法分析-The document is the lexical analyzer, which enables the basic lexical analysis! !
Platform: | Size: 40960 | Author: hesen | Hits:

[ELanguageCifafenxi

Description: 编写一个词法分析程序并生成相应的类号,希望对大家有帮助-Write a lexical analyzer and generates the corresponding class number, we want to help
Platform: | Size: 7168 | Author: xi | Hits:

[EditorForTrans

Description: 编译课程设计的基本任务是设计一个mini-pascal语言的编译器,将mini-pascal 语言的源程序翻译成等价的中间代码。要求输入mini-pascal语言写的源程序(以文件形式存储),首先经过词法分析,输出原程序分析后的二元式文件,供语法制导翻译用。经过语法制导翻译将词法分析器产生的二元式翻译成等价的四元式形式,也就是中间代码的生成。要求能进行正常的关键字如:begin,end, if ,else 等的识别-Compile the basic task of curriculum design is to design a mini-pascal language compiler, the mini-pascal language source translated into an equivalent intermediate code. For the importation of mini-pascal source code written in (stored in document form), first through lexical analysis, output analysis of the original program binary-type file for Syntax interpreter. After translation of the lexical analyzer Syntax-generated binary-translation into an equivalent form of the quaternary type, that is, intermediate code generation. Required to carry out normal keywords such as: begin, end, if, else, etc. Identification
Platform: | Size: 1039360 | Author: 整修民 | Hits:

[Compress-Decompress algrithmsdsafgdsa

Description: 词法分析器,C++做的词法分析器.用于代码分析-Lexical analyzer, C++ to do the lexical analyzer. For code analysis
Platform: | Size: 19456 | Author: | Hits:

[File FormatCFFX

Description: 一个编译原理词法分析器的代码,可以将输入的一串字符进行词法分析,检验是否符合要求。-Principles of a compiler lexical analyzer code, you can enter the string of characters lexical analysis, testing for compliance.
Platform: | Size: 38912 | Author: 储昭良 | Hits:

[Windows Developcifa

Description: 词法分析器,有助于编译原理课程实现,非常有用哦-Lexical analyzer, compiler theory course will help to achieve, very useful oh
Platform: | Size: 269312 | Author: | Hits:

[ELanguagecifa

Description: 编译词法分析器 设计一个词法分析器以执行词法分析,在单词的级别上分析和翻译源程序-Compiled lexical analyzer
Platform: | Size: 189440 | Author: wukang | Hits:

[ELanguagesiewwq

Description: 词法分析器 可直接输入一个文本文档进行分析-Lexical analyzer can directly enter a text document analysis
Platform: | Size: 1465344 | Author: siewwq | Hits:

[ELanguagesiewwq2

Description: 又一个词法分析器 代码比较简单 易于修改和学习-Another relatively simple lexical analyzer code easy to modify and learning
Platform: | Size: 257024 | Author: siewwq | Hits:

[Other resourcetestlex

Description: windows 下运用parser generator lex编写的词法分析器-Under windows prepared using parser generator lex lexical analyzer
Platform: | Size: 1024 | Author: alice | Hits:

[JSP/Javalexer

Description: 词法分析器,用java实现,采用的核心算法是通过函数readch()把下一个输入字符读到变量peek中,函数scan在略过所有空白字符后,首先试图识别像<=这样的复合词法单元和整数数字,如果不成功,它就试图读入一个字符。-Lexical analyzer, with java implementation, the core algorithm used by the function readch () to read the next input character variable peek, the function scan skip all white space characters in after the first attempt to identify as < = such a complex lexical unit and integer numbers, if unsuccessful, it tried to read a character.
Platform: | Size: 2048 | Author: 陈高阳 | Hits:
« 1 2 ... 45 46 47 48 49 50»

CodeBus www.codebus.net